home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / emacs.lha / emacs-19.16 / vms / VMSNOTES < prev   
Text File  |  1992-11-12  |  3KB  |  66 lines

  1. See the file VMSINSTALL for VMS installation information.
  2.  
  3. * Deficiencies of VMS GNU Emacs
  4.  
  5. All GNU Emacs features which on Unix work by running a Unix utility in a
  6. subprocess currently do not work on VMS.
  7.  
  8. These include Dired, listing a file directory, reading and sending mail,
  9. reading and posting netnews, spelling correction, displaying the time and
  10. load in the mode line, queueing output for printing, and the `sort-columns'
  11. command.  Naturally, the commands to view Unix manual pages and execute Unix
  12. shell commands also do not work.
  13.  
  14. It is not possible to fix these problems in a general way on VMS because
  15. they involve interfaces to parts of the operating system which work very
  16. differently on VMS.  Each feature must be reimplemented individually.
  17.  
  18. I hope that someone will send me an implementation for directory listing on
  19. VMS.  This should not be very hard to do.  Most of the code you need is
  20. already provided in [.src]dired.c.
  21.  
  22. The normal commands for running an inferior shell or lisp with I/O through
  23. an Emacs buffer do not work on VMS, but you can instead create a DCL
  24. subprocess which does I/O through an Emacs buffer and get a similar effect.
  25. See the file [.lisp]vms-patch.el.
  26.  
  27. * Specifying terminal type.
  28.  
  29. To specify a terminal type for Emacs that is not known to VMS, define the
  30. logical name EMACS_TERM with the terminal type as value.  Terminal types are
  31. looked up in the termcap data base, which is found as the file
  32. `[etc]termcap.dat' in the Emacs distribution.
  33.  
  34. * Specifying file names.
  35.  
  36. GNU Emacs accepts both Unix and VMS file name syntax.  Most Lisp code that
  37. runs in Emacs uses Unix syntax so it can run everywhere.  Users on VMS will
  38. generally type file names with VMS syntax.
  39.  
  40. The EMACSLOADPATH logical name, if you use it, may contain directory names
  41. in either Unix or VMS syntax, but not mixed.  This is NOT a VMS logical name
  42. with multiple equivalences.
  43.  
  44. find-file prompts with the current directory.  You can then type a relative
  45. directory spec to get somewhere else in the hirearchy.  For instance:
  46.  
  47. Find File: emacs_library:[src][-.lisp]startup.el
  48.  
  49. is converted to emacs_library:[lisp]startup.el by expand-file-name.  The
  50. basic rule is:
  51.   ][-     is treated like /.. (dir:[file.sub][-.other] ==> dir:[file.other],
  52.                                dir:[file.sub][-] ==> dir:[file])
  53.   ][.     elides the ][ (dir:[file][.sub] ==> dir:[file.sub])
  54.   ][alpha backs up to the previous [ (dir:[file][other] ==> dir:[other])
  55. a colon appearing after a ] forces a new "root" disk.
  56.         (dev:[file]dev2:[other] ==> dev2:[other])
  57. expand-file-name also tries to be smart about decnet node names, but this is
  58. not yet known to work.
  59.  
  60. * A possible problem.
  61.  
  62. For VMS versions 4.4 and up, make sure the file SYS$SYSTEM:RIGHTSLIST.DAT
  63. has WORLD:R access.  Emacs reads this file to check file access.  If this
  64. file does not have appropriate access, Emacs may think that you cannot write
  65. any files.  [don't think this is true anymore -rbr 7 nov 92]
  66.